/* ================= START OF BASIC CODE ================= */
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    background-color: #f9f9f9;
}
/* ================= NED OF BASIC CODE ================= */
.topbar-info {
    background-color: #343a40; 
    padding: 10px 20px;
}

.email-section, .contact-section {
    display: inline-flex;
    align-items: center;
}

.contact-section a {
    margin-left: 15px; 
}

.text-light {
    color: #f8f9fa; 
}

.__blinking {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}



/* ================= START OF NAVBAR ================= */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 0.9375rem 1.2rem; 
    padding-right: 3rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform .3s ease-in-out; 
}

.nav_title {
    font-size: 1.4rem;
    display: flex; 
    align-items: center; 
    justify-content: center; 
   
  }
  
  .logo {
    width: 50px; 
    height: auto; 
    object-fit: contain; 
  }
/* .navbar.sticky {
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
} */

.nav_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav_menu {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap; 
    justify-content: flex-end;
    perspective: 250px;
}

.nav_menu a {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav_menu a:hover {
    color: #35eaa5;
}

.nav_buttons {
    display: none;
}
.nav_toggle-open, .nav_toggle-close {
    display: none;
    background: transparent;
    color: #FFF;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10500;
}
/* ================= END OF NAVBAR ================= */


/* ================= START OF SWIPER ================= */
/* General Slide Content Styling */
.slide-content {
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
}

/* Animated Heading */
.slide-content h1 {
    font-size: 3.3rem;
    font-weight: 400;
    display: inline-block;
    overflow: hidden; 
    white-space: nowrap; 
    border-right: 0.1em solid black; 
    animation: typing 5s steps(30) 1s forwards, blink-caret 0.75s step-end infinite;
  }
  
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  
  @keyframes blink-caret {
    50% {
      border-color: transparent;
    }
  }

/* Animated Paragraph */
.slide-content p {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    color: #ddd;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

/* Swiper Container Enhancements */
.swiper-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

/* Navigation Buttons Styling */
.swiper-button-next, .swiper-button-prev {
    color: #ffffff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Pagination Styling */
.swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background-color: #35eaa5;
    opacity: 1;
}

/* =================== Animations =================== */

/* Fade In Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Fade In from Bottom */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide In Down */
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= END OF SWIPER ================= */





/* ================= START OF ABOUT ================= */
#about-section {
    display: flex;
    justify-content: center; /* Center the about section */
    padding: 40px;
    margin-top: 4rem; /* Space from top */
}

.main-box {
    display: flex;
    width: 90%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05); /* Box shadow for the container */
}

.left-box {
    width: 50%;
    padding: 20px;
}
.about-image{
    width: 100%;
    height: 80vh;
    padding: 20px; 
    background-image: url('../Image/about/who.png');
    background-size: cover; 
}

.left-box img {
    width: 100%;
    border-radius: 10px; /* Round the image corners */
}

.left-box h4 {
    font-size: 1.7rem;
    font-weight: 600; /* Bold font for the heading */
    margin-top: 6px;
}

.left-box p {
    font-size: 1rem;
    margin-top: 0.7rem;
    font-weight: 500; /* Semi-bold font for paragraph */
    line-height: 1.3; /* Adjust line spacing */
}
/* Right Box Styling */
.right-box {
    width: 50%;
    padding: 20px;
}


.accordion {
    margin-top: 20px;
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-header {
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    background-color: #f1f1f1;
    padding: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #ddd; /* Change background on hover */
}

.accordion-content {
    display: none;
    font-size: 1rem;
    padding: 1rem;
    background-color: #f1f1f1;
    line-height: 1.4;
}

.accordion-item.active .accordion-content {
    display: block; /* Show content when active */
}

.fa-chevron-down {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.fa-rotate-180 {
    transform: rotate(180deg); /* Rotate chevron on active state */
}


@media (max-width: 512px) {
    .about-image{
        height: 50vh;
    }
}
/* ================= END OF ABOUT ================= */






/* ================= START OF SERVICES ================= */
.services {
    margin-top: 8rem;
    margin-bottom: 2rem;
    padding: 20px;
    /* background-color: #fff; */
}

.services h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.services_wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services_slider_container {
    width: 90%;
    border-radius: 10px;
}

.services_swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    color: #000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.services_swiper-slide:hover {
    transform: scale(1.05);
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.3);
}

.services_swiper-slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.services_swiper-slide h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.services_swiper-slide p {
    font-size: 1rem;
    line-height: 1.5;
}


/* ================= END OF SERVICES ================= */




/* ================= START OF INDUSTRIS ================= */
.indus_title {
    background: linear-gradient(135deg, #004d7f, #00bcd4);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 5px solid #00bcd4;
}

.indus_title h1 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.industries_page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.industries-intro {
    text-align: center;
    margin-bottom: 50px;
}

.industries-intro h2 {
    font-size: 2.5rem;
    color: #004d7f;
    margin-bottom: 20px;
    font-weight: bold;
}

.industries-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.industries-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}

.industry-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-card h3 {
    font-size: 1.8rem;
    color: #004d7f;
    margin-bottom: 15px;
    font-weight: bold;
}

.industry-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300%;
    height: 300%;
    background-color: rgba(209, 209, 209, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}


/* ================= END OF INDUSTRIES ================= */




/* ================= START OF OUR SERVICES ================= */
.Our_process {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
}

.Our_process h1 {
    text-align: center;
    font-size: 3rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.Our_process p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.process-step {
    background-color: #fff;
    padding: 30px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 3s ease;
    transition: all .5s ease;
}

.process-step h3 {
    font-size: 1.6rem;
    color: #2b2b2b;
    margin-bottom: 20px;
    font-weight: 600;
}

.process-step p {
    font-size: 1rem;
    color: #777;
}

.process-step img {
    width: 60px;
    height: 60px;
    border-radius: 50%; 
    margin-bottom: 20px;
}

/* .process-step:nth-child(odd) {
    background-color: #f9fafb;
} */

/* Hover effect */
.process-step:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); 
    transform: translateY(-5px); 
    cursor: pointer;
}

/* ================= END OF OUR SERVICES ================= */




/* ================= START OF CONTACT ================= */
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    opacity: 1;
}

.contact-left {
    background-image: url('../Image/contact/image1.png');
    background-size: cover;
    position: relative;
    background-position: center;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 15px;
}

.contact-left h1 {
    position: relative;
    top: -180px;
    font-size: 42px;
    /* margin-bottom: 10px; */
    color: #000;
}
.contact-left h5 {
    position: relative;
    top: -170px;
    font-size: 20px;
    /* margin-bottom: 10px; */
    color: white;
}
@media (max-width: 512px) {
    .contact-left h1{
        position: static;
        top: 0;
    }
    .contact-left h5{
        display: none;
        position: static;
        top: 0px;
    }
    .contact-left p{
        display: none;
        position: static;
        top: 0px;
    }
}

.contact-left p {
    position: relative;
    top: 191px;
    font-size: 20px;
    color: #000;
}

.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 24px;
    color: #ff6347;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.contact-info a {
    color: #ff6347;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #dc143c;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #fafafa;
}

.contact-form h2 {
    margin: 1rem 0;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background-color: #ff6347;
    color: #fff;
    border: none;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #dc143c;
}

.input-error {
    border: 1px solid red;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-bottom: 10px;
}
/* ================= END OF CONTACT ================= */



/* ================= START OF TESTIMONIALS ================= */

.testimonials-section {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1300px;
    text-align: center;
    margin: 10px auto;
    margin-bottom: 100px;
}

.testimonials-section h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonials-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: 20px;
    padding: 35px;
    width: 30%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    cursor: pointer;
    border-left: 6px solid #ff5a36;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transition */
}

.testimonial img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial h3 {
    font-size: 1.4rem;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
}

.testimonial .quote-icon {
    font-size: 3rem;
    color: #ff5a36;
    position: absolute;
    top: -30px;
    left: 20px;
}

/* Hover effect */
.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}


/* ================= END OF TESTIMONIALS ================= */



/* ================= START OF FOOTER ================= */
footer {
    background-color: #011f44; /* Dark background for footer */
    padding-top: 5rem;
    font-size: 0.9rem;
    color: white;
}

.footer_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Grid layout for footer */
    gap: 5rem;
    width: 90%;
    margin: 0 auto;
}

.footer_container > div h4 {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.footer_1 a {
    color: white;
    font-size: 1.3rem;
}

.footer_1 p {
    margin: 0 0 2rem;
    line-height: 1.4;
}

footer ul li {
    margin-bottom: 0.7rem;
}
footer ul li a {
    color: white;
}

footer ul li a:hover {
    text-decoration: underline; /* Underline links on hover */
}

.footer-media p {
    margin-top: 8px;
    font-size: 0.7rem;
    cursor: pointer;
}

.footer-media p i {
    margin-right: 8px;
    padding: 5px;
    border-radius: 8px;
    transition: all 400ms ease;
}

.footer-media p .phone:hover {
    background-color: #02a864; /* Green for phone icon */
}

.footer-media p .email:hover {
    background-color: #e1574c; /* Red for email icon */
}

.footer_socials {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.footer_socials a {
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 1s ease;
    color: white;
}

.face-icon:hover {
    background-color: #1877F2; /* Facebook blue */
}

.insta-icon:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); /* Instagram gradient */
}

.twi-icon:hover {
    background-color: #1DA1F2; /* Twitter blue */
}

.link-icon:hover {
    background-color: #0077B5; /* LinkedIn blue */
}

.footer_copyright {
    text-align: center;
    margin-top: 4rem;
    padding: 1.2rem 0;
    border-top: 1px solid #151515; /* Add top border */
    font-size: 1rem;
    box-shadow: 0 -6px 15px rgba(0, 0, 0, 0.3), 0 -2px 4px rgba(0, 0, 0, 0.1);
}


/* ================= END OF FOOTER ================= */





/* =================START  MEDIA QUERIES FOR RESPONSIVENESS ( 1024px SCREEN SIZE ) ================= */
@media (max-width: 1024px) {
    /* ================= START OF NAVBAR ================= */
    .nav_title{
        font-size: 2vw;
    }
    .nav_menu {
        gap: 1rem;
    }
    .nav_menu a{
        font-size: 2vw;
    }
    /* ================= END OF NAVBAR ================= */

    /* ================= START OF SWIPER ================= */
    .swiper-container {
        height: 400px; 
    }
    .slide-content h1 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
   
    /* ================= END OF SWIPER ================= */



    /* ================= START OF ABOUT ================= */
    .main-box {
        width: 95%;
    }
    .left-box h4{
        font-size: 1.5rem;
    }
    .left-box p{
        font-size: 1rem;
    }
    .accordion-item h3{
        font-size: 1rem;
    }

    .left-box,
    .right-box {
        width: 100%; 
    }

    .left-box img {
        margin-bottom: 20px; 
    }
    /* ================= END OF ABOUT ================= */

    /* ================= START OF SERVICES ================= */
    .services_slider_container {
        width: 95%;
    }
    .services_swiper-slide h3 {
        font-size: 1.5rem;
    }
    .services_swiper-slide p {
        font-size: 0.9rem;
    }
    /* ================= START OF SERVICES ================= */



    /* ================= START OF INDUSTRIES ================= */
    .indus_title h1 {
        font-size: 2rem;
    }

    .industries-intro h2 {
        font-size: 2.2rem;
    }

    .industries-intro p {
        font-size: 1rem;
    }

    .industries-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .industry-card {
        padding: 30px 15px;
    }

    .industry-card h3 {
        font-size: 1.6rem;
    }

    .industry-card p {
        font-size: 1rem;
    }
    /* ================= END OF INDUSTRIES ================= */




   /* ================= START OF OURSERVICS ================= */
    .process-step {
        width: 45%; 
        margin-bottom: 20px;
    }

    .process-steps {
        justify-content: space-between;
        gap: 15px;
    }

    .Our_process h1 {
        font-size: 2.5rem;
    }

    .Our_process p {
        font-size: 1rem;
    }
    /* ================= END OF OURSERVICS ================= */



    /* ================= START OF CONTACT ================= */
    .contact-container {
        padding: 30px;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-left {
        padding: 30px;
    }

    .contact-left h1 {
        font-size: 36px;
    }

    .contact-left p {
        font-size: 18px;
    }

    .contact-info h2 {
        font-size: 22px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 10px;
    }

    .contact-form button {
        font-size: 16px;
        padding: 12px;
    }

    /* ================= START OF TESTIMONIALS ================= */
    .testimonials-section h1 {
        font-size: 2.5rem; 
        margin-bottom: 30px;
    }

    .testimonials-container {
        justify-content: center;
    }

    .testimonial {
        width: 45%; 
        margin-bottom: 20px;
    }

    .testimonial img {
        width: 80px;
        height: 80px;
    }
    /* ================= END OF TESTIMONIALS ================= */



    /* ================= START OF FOOTER ================= */
    .footer_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer_1, .footer_2, .footer_3, .footer_4 {
        margin-bottom: 2rem;
    }

    .footer_1 a {
        font-size: 1.1rem;
    }

    .footer-media p {
        font-size: 0.8rem; 
    }

    .footer_socials a {
        padding: 0.5rem;
    }
    /* ================= END OF FOOTER ================= */

}

/* ================= END  MEDIA QUERIES FOR RESPONSIVENESS ( 1024px SCREEN SIZE ) ================= */







/* ================= START MEDIA QUERIES FOR RESPONSIVENESS ( 512px SCREEN SIZE ) ================= */
@media (max-width: 512px) {
    /* ================= START OF NAVBAR ================= */
    .nav_title{
        font-size: 1rem;
    }
   .nav_menu{
    position: fixed;
    right: 0;
    top: 3.7rem;
    flex-direction: column;
    gap: 0;
    width: fit-content;
    perspective: 250px;
    display: none;
    
   }
   .nav_menu li {
    width: 100%;
   }
   .nav_menu li a{
    font-size: 1.3rem;
    background-color: #35eaa5;
    margin: 0;
    color: white;
    padding: 1rem 4rem;
    width: 100%;
    display: block;
    border-top: 1px solid white;
    text-align: center;
    box-shadow: -2rem 5rem 5rem rgba(0, 0, 0, 0.3);
   }
   .nav_menu li a:hover {
    background-color: #28b88a; /* New background color on hover */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); /* Shadow effect when hovered */
    }
   .nav_buttons{
    display: block;
   }
   .nav_toggle-open, .nav_toggle-close{
    display: inline-block;
    background-color: transparent;
    font-size: 1.8rem;

   }
   .nav_toggle-close{
    display: none;
   }
   

    .nav_menu li {
        transform: rotateX('90deg');
        opacity: 0;
        animation: navKey 0.5s ease-in-out forwards;
        transform-origin: top;
    }

    @keyframes navKey {
        to{
            transform: rotateX('0deg');
            opacity: 1;
        }
        
    }
    /* ================= END OF NAVBAR ================= */


    /* ================= START OF SWIPER ================= */
    .swiper-container {
        height: 250px; 
    }
    .slide-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    .slide-content p {
        font-size: 0.8rem; 
    }
    .swiper-slide_1 img {
        object-fit: cover;
    }
    
    /* ================= END OF SWIPER ================= */


    /* ================= START OF ABOUT ================= */
    .main-box {
        flex-direction: column;
        width: 95%;
    }

    .left-box,
    .right-box {
        width: 100%; 
    }

    .left-box img {
        margin-bottom: 20px; 
    } #about-section {
        padding: 20px;
        margin-top: 2rem; 
    }

    .main-box {
        flex-direction: column; 
        width: 100%;
        padding: 10px;
    }

    .left-box {
        width: 100%; 
        padding: 10px; 
    }

    .left-box img {
        margin-bottom: 15px;
    }

    .left-box h4 {
        font-size: 1.5rem;
    }

    .left-box p {
        font-size: 0.9rem;
        line-height: 1.5; 
    }

    .right-box {
        width: 100%; 
        padding: 10px;
    }

    .accordion-header {
        font-size: 1rem; 
        padding: 1rem; 
    }

    .accordion-content {
        font-size: 0.9rem;
        padding: 0.8rem; 
    }

    .fa-chevron-down {
        font-size: 0.8rem;
    }
    /* ================= END OF ABOUT ================= */


    /* ================= START OF SERVICES ================= */
    .services h1 {
        font-size: 2rem;
    }
    .services_slider_container {
        width: 100%;
    }
    .services_swiper-slide {
        padding: 15px;
    }
    .services_swiper-slide h3 {
        font-size: 1.2rem;
    }
    .services_swiper-slide p {
        font-size: 0.8rem;
    }
    /* ================= START OF SERVICES ================= */


    /* ================= START OF INDUSTRIES ================= */
    .indus_title {
        padding: 60px 20px;
    }

    .indus_title h1 {
        font-size: 1.8rem;
    }

    .industries-intro h2 {
        font-size: 1.8rem;
    }

    .industries-intro p {
        font-size: 0.95rem;
    }

    .industries-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industry-card {
        padding: 25px 15px;
    }

    .industry-card h3 {
        font-size: 1.4rem;
    }

    .industry-card p {
        font-size: 0.95rem;
    }
    /* ================= END OF INDUSTRIES ================= */




   /* ================= START OF OURSERVICS ================= */
    .process-step {
        width: 100%; 
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .Our_process h1 {
        font-size: 2rem;
    }

    .Our_process p {
        font-size: 0.9rem;
    }
    /* ================= END OF OURSERVICS ================= */

    .contact {
        padding: 10px;
    }

    .contact-container {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-left {
        padding: 20px;
        background-position: center;
        height: auto;
    }

    .contact-left h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .contact-left p {
        font-size: 16px;
    }

    .contact-right {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .contact-info h2 {
        font-size: 20px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 14px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 16px;
    }

    /* ================= START OF CONTACT ================= */
    
    
    /* ================= END OF CONTACT ================= */

   

    /* ================= START OF TESTIMONIALS ================= */
    .testimonials-section {
        padding: 40px;
    }

    .testimonials-section h1 {
        font-size: 2rem; 
        margin-bottom: 20px;
    }

    .testimonials-container {
        flex-direction: column; 
        align-items: center;
    }

    .testimonial {
        width: 80%; 
        margin-bottom: 20px;
        padding: 20px;
    }

    .testimonial img {
        width: 70px; 
        height: 70px;
    }

    .testimonial p {
        font-size: 1rem;
    }

    .testimonial h3 {
        font-size: 1.2rem;
    }
    /* ================= END OF TESTIMONIALS ================= */



    /* ================= START OF FOOTER ================= */
    .footer_container {
        grid-template-columns: 1fr; 
        gap: 2rem;
        text-align: center;
    }

    .footer_1 a {
        font-size: 1.2rem; 
    }

    .footer_1 p {
        font-size: 0.9rem;
    }

    .footer-media p {
        font-size: 0.8rem;
    }

    .footer_socials {
        justify-content: center;
        gap: 0.5rem;
    }

    .footer_socials a {
        padding: 0.5rem;
    }

    .footer_copyright {
        font-size: 0.9rem;
        padding: 1rem 0; 
    }
    /* ================= END OF FOOTER ================= */
}
/* ================= END MEDIA QUERIES FOR RESPONSIVENESS ( 512px SCREEN SIZE ) ================= */
